home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / Implementation / SystemProcess / ODXFuncs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  1.0 KB  |  45 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ODXFuncs.h
  3.  
  4.     Contains:    Functions shared between new and old launcher.
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1996 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <8>     7/11/96    TJ        Fixed Name of function to check for MacOS 8
  13.          <7>     6/23/96    NP        10002: Launch time speedups.
  14.          <6>    .06.1996    NP        10002: Launch time fixes, system process.
  15.          <5>    .05.1996    NP        Reverting.
  16.          <4>    .05.1996    NP        10002: Launch time fixes.
  17.          <3>    .05.1996    NP        Add include.
  18.          <2>    .05.1996    NP        Small change to parameters of
  19.                                     HandleLaunchFailed.
  20.          <1>    .05.1996    NP        first checked in
  21.  
  22.     To Do:
  23. */
  24.  
  25. #ifndef _ODXFUNCS_
  26. #define _ODXFUNCS_
  27.  
  28. #ifndef __APPLEEVENTS__
  29. #include <AppleEvents.h>
  30. #endif
  31.  
  32. #ifndef _ODTYPES_
  33. #include "ODTypes.h"
  34. #endif
  35.  
  36. pascal OSErr    HandleLaunchFailed(const AppleEvent* theAppleEvent,
  37.                                     AppleEvent* reply,
  38.                                     long refCon);
  39. pascal OSErr    HandleRequiredEvent(const AppleEvent* theAppleEvent,
  40.                                     AppleEvent* reply,
  41.                                     long refCon);
  42. ODBoolean        RunningUnderMacOS8();
  43.  
  44. #endif /* _ODXFUNCS_ */
  45.